home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 899 b | 39 lines | [TEXT/MPS ] |
- // UApplicationSkeleton.h
- // Copyright © 1991-96 by Apple Computer, Inc. All rights reserved.
-
- #ifndef __UAPPLICATIONSKELETON__
- #define __UAPPLICATIONSKELETON__
-
- #ifndef __UAPPLICATION__
- #include "UApplication.h"
- #endif
-
- //----------------------------------------------------------------------------------------
- // TApplicationSkeleton
- //----------------------------------------------------------------------------------------
-
- class TApplicationSkeleton: public TApplication
- {
- MA_DECLARE_CLASS;
-
- public:
-
- TApplicationSkeleton();
- // Constructor
-
- virtual ~TApplicationSkeleton();
- // Destructor
-
- virtual void IApplicationSkeleton();
-
- // Documents
- virtual TDocument* DoMakeDocument(CommandNumber itsCommandNumber, TFile* itsFile); // Override
-
- // Commands
- virtual void DoSetupMenus(); // Override
- virtual void DoMenuCommand(CommandNumber aCommandNumber); // Override
-
- };
-
- #endif
-